1、安装httpd软件包:Yum install
httpd2、启动apache服务:[root@redhat Desktop]# /etc/init.d/httpd startStarting httpd:
[ OK ]3、安装mod-ssl软件包[root@redhat Desktop]# yu...
分类:
其他好文 时间:
2014-04-29 20:50:11
阅读次数:
431
CENTOS6.4上KVM虚拟机环境搭建关键词:KVM,虚拟机,windows7, VNC,
桥接网络,br0, SCSI, IDE环境:host: CENTOS6.4guest: windows 7
sp1主要步骤:安装软件包配置桥接网络配置VNC安装虚拟机1.安装软件包 yum instal.....
分类:
其他好文 时间:
2014-04-29 19:43:27
阅读次数:
670
本文记录Hadoop 2.x在Linux x64下重新编译的过程。环境:Centos 6.5
x64 &Hadoop 2.2一、安装编译包yum install svnyum install autoconfautomake libtool
cmakeyum install ncurses-deve...
分类:
其他好文 时间:
2014-04-29 19:19:52
阅读次数:
451
gcc在linux系统中,默认是没有安装gcc编译器的,可以通过命令rpm -q | grep
gcc来查看。安装命令为:yum -y install gcc安装后,编写一个.c结尾的文件。gcc
test.c就会默认输出一个a.out的输出文件,这个输出文件就是可执行文件。如果加上-o选项,则可以...
分类:
数据库 时间:
2014-04-29 18:11:03
阅读次数:
583
简单记录:模糊查询的select语句的拼写 public List
GetWhereStudent(string name, string sub, string isG) { List lt = new List();
str...
分类:
Web程序 时间:
2014-04-29 17:17:34
阅读次数:
864
实用正则org.springframework.aop.support.RegexpMethodPointcutAdvisor然后 .*_cache.*
表示拦截...
分类:
编程语言 时间:
2014-04-29 16:25:10
阅读次数:
510
如题,列出《随机算法》课程的topic
list,以记录和供有兴趣的朋友研究。Lession1:生日悖论、生日攻击、两个常用数学工具(马尔科夫不等式、切比雪夫不等式)Lession2:radom
quick sort(hw)、矩阵乘法判定、min(max())=max(min())、复杂性类(BPP...
分类:
其他好文 时间:
2014-04-29 16:16:55
阅读次数:
596
两种思路,一种递归的解决T(n) = T(n-2) +
O(n);另外一种思路,将后一半的链表原地反转,然后再逐个遍历拼接到前一半的链表上。这种做法能够在O(n)的时间复杂度内完成。
分类:
其他好文 时间:
2014-04-29 16:06:41
阅读次数:
395
When running InnoDB you are able to dig into
the engine internals, look at various gauges and counters, see past deadlocks
and the list of all open tr...
分类:
数据库 时间:
2014-04-29 15:41:04
阅读次数:
686
2014-04-29
03:05题目:给定一个词典,其中某些词可能能够通过词典里其他的词拼接而成。找出这样的组合词里最长的一个。解法:Leetcode上有Word
Break这道题,和这题基本思路一致。代码: 1 // 18.7 Given a list of words, find out the...
分类:
其他好文 时间:
2014-04-29 14:30:17
阅读次数:
493